projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3f9929b
)
(update_frame): Fix previous change: unconditionally bzero at the end.
author
Richard M. Stallman
<rms@gnu.org>
Sun, 1 May 1994 07:34:23 +0000
(07:34 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sun, 1 May 1994 07:34:23 +0000
(07:34 +0000)
src/dispnew.c
patch
|
blob
|
history
diff --git
a/src/dispnew.c
b/src/dispnew.c
index 856f0a149edd3758dbfade133ef5438808ed6461..d90562bab54e5c861791fe70479a9f0d6af52a1c 100644
(file)
--- a/
src/dispnew.c
+++ b/
src/dispnew.c
@@
-1335,8
+1335,7
@@
update_frame (f, force, inhibit_hairy_id)
if (FRAME_HEIGHT (f) == 0) abort (); /* Some bug zeros some core */
display_completed = !pause;
- if (desired_frame)
- bzero (desired_frame->enable, FRAME_HEIGHT (f));
+ bzero (FRAME_DESIRED_GLYPHS (f)->enable, FRAME_HEIGHT (f));
return pause;
}